npm yarn设置代理,以及国内镜像源

  • 638 字
  • 次阅读

1
2
3
npm config set https-proxy socks5://127.0.0.1:7890

yarn config set proxy socks5://127.0.0.1:1080

https-proxy、proxy可以互换,目前没感到差别。

还可以设置镜像源,不过改了之后包的地址也会变,如果涉及到跨区域多人开发的话,最好不要乱动。

需要注意 Linux 下,每个用户以及 root 配置不同,全局可能需要 root 权限

1
2
3
4
5
6
7
8
9
10
11
12
npm config get registry  // 查看npm当前镜像源

npm config set registry https://registry.npmmirror.com // 设置npm镜像源为淘宝镜像

npm config set registry http://mirrors.cloud.tencent.com/npm/ //腾讯

npm config set registry https://mirrors.huaweicloud.com/repository/npm/ //华为


yarn config get registry // 查看yarn当前镜像源

yarn config set registry https://registry.npmmirror.com // 设置yarn镜像源为淘宝镜像

修正了淘宝镜像源地址,增加了腾讯和华为 -2024-10-10

打赏
打赏提示信息
分享
分享提示信息